home *** CD-ROM | disk | FTP | other *** search
/ Drivin' Route 66 / Drivin' Route 66 (1995)(Creative Multimedia)[Mac-PC].iso / pc / shared.dir / 00999_Script_Low utils < prev    next >
Text File  |  1995-10-02  |  946b  |  50 lines

  1. --⌐ 1995, Cambridge Digital Media, Inc.
  2.  
  3. on lowLevInit -- Things that should always be called on startMovie.
  4.   set the centerstage to true
  5.   set the visible of sprite 47 to false
  6.   set the visible of sprite 48 to false
  7.   if the colordepth <> 8 then
  8.     set the colordepth to 8 
  9.   end if
  10. end 
  11.  
  12. on fixPicons
  13.   if the movieName = ".DIR" then
  14.     repeat with  s = 35 to 37
  15.       puppetSprite s,0
  16.       set the castNum of sprite s to the number of cast (line s-34 of field "fixPic")
  17.       updateStage
  18.     end repeat
  19.     fixmapPicons
  20.   end if
  21. end
  22.  
  23. on noSprites
  24.   repeat with p = 1 to 48
  25.     puppetSprite p,0
  26.   end repeat
  27.   updateStage
  28. end 
  29.  
  30. on busyCursor
  31.   cursor 4
  32.   put the ticks+5 into future
  33.   repeat while the ticks < future
  34.     nothing
  35.   end repeat
  36. end 
  37.  
  38. on doDelay
  39.   cursor 4
  40.   put the ticks+10 into future
  41.   repeat while the ticks < future
  42.     nothing
  43.   end repeat
  44. end
  45.  
  46. on idle
  47.   cursor -1
  48. end
  49.  
  50.